home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Eval.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  497 b   |  39 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #eval1:
  7.       go("eval2")
  8.       set gSection to #eval2
  9.       audio1xOnly(gMasterData, "205")
  10.     #eval2:
  11.       leaveThisMovie()
  12.   end case
  13. end
  14.  
  15. on goBack
  16.   stopSound2()
  17.   case gSection of
  18.     #eval1:
  19.       goIntro()
  20.     #eval2:
  21.       goEvaluate()
  22.   end case
  23. end
  24.  
  25. on leaveThisMovie
  26.   stopSound2()
  27.   cursor(4)
  28.   go(1, "Menu4")
  29. end
  30.  
  31. on notePadButton
  32.   DoNotepad()
  33. end
  34.  
  35. on continueNext
  36.   stopSound2()
  37.   go(the frame + 1)
  38. end
  39.